home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Mac-Source 1994 July
/
Mac-Source_July_1994.iso
/
C and C++
/
Science⁄Math
/
VideoToolbox
/
VideoToolboxSources
/
Exponential.c
< prev
next >
Wrap
Text File
|
1993-12-15
|
299b
|
15 lines
/* Exponential.c
Routines related to the exponential probability distribution.
Also see: Binomial.c, ChiSquare.c, Normal.c, Uniform.c
*/
#include <math.h>
double ExponentialPdf(double x);
double ExponentialPdf(double x)
// Mean and variance are 1.
{
if(x<0.0)return 0.0;
else return exp(-x);
}